home *** CD-ROM | disk | FTP | other *** search
- <!--
- var strLastID = "";
-
- function changeColor(cellID, switchOFF)
- {
- if (document.getElementById)
- {
- if (switchOFF==true)
- {
- if (cellID!=strLastID)
- {
- document.getElementById(cellID).style.backgroundColor="#000066";
- }
- }
- else
- {
- document.getElementById(cellID).style.backgroundColor="#9797FB";
- }
- }
- }
-
- function doClick(id1)
- {
- var tmpVal = strLastID;
- strLastID = id1;
- if (tmpVal!="") changeColor(tmpVal, true);
- changeColor(id1, false);
- }
-
- function doInit()
- {
- doClick('c10');
- }
- //-->